Skip to main content

AddText

Adds some text to the current run.

Syntax

expression.AddText(sText);

expression - A variable that represents a ApiRun class.

Parameters

NameRequired/OptionalData typeDefaultDescription
sTextRequiredstringThe text which will be added to the current run.

Returns

This method doesn't return any data.

Example

This example adds some text to the run.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let run = Api.CreateRun();
run.AddText("This is just a sample text. Nothing special.");
paragraph.AddElement(run);